home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ WinXP Taskbar Grouping Active.xpl < prev    next >
Text File  |  2002-01-03  |  1KB  |  41 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Appearance\Taskbar"
  5. "NAME"="Taskbar Window Grouping Active"
  6. "VERSION"="1.00"
  7. "OSVERSION"="0000011"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Allow Windows to group apps"
  10. "DESCRIPTION 1"="Windows XP provides a feature that allows the taskbar to "group" similar windows together. This means, instead of e.g. three windows of Internet Explorer that clutter your taskbar, you only have one icon visible."
  11. "DESCRIPTION 2"="If you do not want this to happen, simply deactive this function here."
  12. "AUTHOR"="Xteq Systems"
  13. "CONTACTURL"="http://www.xteq.com/"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "COMMENT 1"="Resistance is futile. "
  16.  
  17.  
  18. sV1="HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\TaskbarGlomming" 'DW
  19.  
  20. SUB Plugin_Initialize
  21.     i=RegReadValue(sV1) 
  22.     If i=1 then SetUIElement 1,true
  23. END SUB
  24.  
  25. SUB Plugin_CheckData(ElementIndex)
  26. END SUB
  27.  
  28. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  29.  b=GetUIElement(1)
  30.  if b=true then
  31.     Call RegWriteValue(sV1,1,2)
  32.  else
  33.     Call RegWriteValue(sV1,0,2)
  34.  end if
  35.  
  36.  Call Logoff
  37. END SUB
  38.  
  39. SUB Plugin_Terminate
  40. END SUB
  41.